{% extends 'base.html' %} {% load static %} {% block title %}Бронирование столов - МОЙ НЕ САМ{% endblock %} {% block content %}

Бронирование столов

Фильтры
{{ filter_form.location }}
{{ filter_form.min_seats }}
{{ filter_form.max_price }}
{{ filter_form.date }}
Сбросить
{% for table in tables %}
{% if table.image %} Стол #{{ table.number }} {% else %}
{% endif %}
Стол #{{ table.number }} {{ table.get_status_display }}

{{ table.get_location_display }}
{{ table.seats }} мест
{{ table.price_per_hour }} ₽/час

{% if table.description %}

{{ table.description|truncatechars:100 }}

{% endif %}
{% empty %}

По вашему запросу не найдено доступных столов.

{% endfor %}
{% endblock %}